home *** CD-ROM | disk | FTP | other *** search
/ Aminet 25 / Aminet 25 (1998)(GTI - Schatztruhe)[!][Jun 1998].iso / Aminet / comm / net / AmiComSysMUI.lha / AmiComSys / rexx / MessageArexx.amicomsys < prev    next >
Text File  |  1998-04-29  |  350b  |  17 lines

  1. /* MessageArexx.amicomsys example
  2. ** You parse the arguments which AmiComSys send to
  3. ** this script in the following way:
  4. user=username
  5. name=realname
  6. text=the message text
  7. host=the host
  8. act= MSG, CHAT or WEB.
  9. */
  10. PARSE ARG user '\0' name '\0' host '\0' text '\0' act
  11.  
  12. Say "User:" user
  13. Say "Name:" name
  14. Say "Host:" host
  15. Say "Text:" text
  16. Say "Act:" act
  17.